home *** CD-ROM | disk | FTP | other *** search
/ Compendium Deluxe 1 / LSD Compendium Deluxe 1.iso / a / programming / c / genmo112.lha / GTB-Modula / Modules / GetFile.def < prev    next >
Encoding:
Modula Definition  |  1993-09-28  |  795 b   |  28 lines

  1. DEFINITION MODULE GetFile;
  2.  
  3. (*
  4.  * -------------------------------------------------------------------------
  5.  *
  6.  *    :Module.    GetFile
  7.  *    :Contents.    interface to JaBa's GetFile-BOOPSI-Object
  8.  
  9.  *    :Author.    Reiner Nix
  10.  *    :Address.    Geranienhof 2, 5000 Köln 71 Seeberg
  11.  *    :Address.    rbnix@pool.informatik.rwth-aachen.de
  12.  *    :Language.    Modula-2
  13.  *    :Translator.    M2Amiga A-L V4.2d
  14.  *    :History.    this interface is a direct descendent from the oberon interface
  15.  *    :History.    GetFile.mod v1.0 by Kai Bolay [kai] 09-Apr-93 (Oberon)
  16.  *    :Imports.    bases.o, boopsi.o 
  17.  *    :Usage.        import module and link with »-lfullpath/bases.o -lfullpath/boopsi.o«
  18.  * -------------------------------------------------------------------------
  19.  *)
  20.  
  21. FROM       IntuitionD        IMPORT    IClassPtr;
  22.  
  23.  
  24. VAR       GetFileClass        :IClassPtr;
  25.  
  26.  
  27. END GetFile.
  28.